From d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3 Mon Sep 17 00:00:00 2001 From: real-zephex Date: Sun, 31 Mar 2024 17:32:48 +0530 Subject: fixes: minor css modifications, added basic information about the last read manga chapter (don't expect much out of it) --- src/app/anime/[id]/[animeId]/page.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/app/anime/[id]/[animeId]') diff --git a/src/app/anime/[id]/[animeId]/page.jsx b/src/app/anime/[id]/[animeId]/page.jsx index d59b0a0..1614775 100644 --- a/src/app/anime/[id]/[animeId]/page.jsx +++ b/src/app/anime/[id]/[animeId]/page.jsx @@ -49,7 +49,7 @@ export default async function Video({ params }) { async function getVideoLink(id) { const res = await fetch( "https://consumet-api-di2e.onrender.com/anime/gogoanime/watch/" + id, - { next: { revalidate: 3600 } } // Video links are revalidated after an hour + { next: { revalidate: 7200 } } // Video links are revalidated after an hour ); const data = res.json(); return data; -- cgit v1.2.3